home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / popen.zip / MAKEFILE < prev    next >
Text File  |  1988-03-08  |  241b  |  16 lines

  1. popen.exe: popen.obj getswitch.obj
  2.     cc -epopen popen.obj getswitch.obj
  3.  
  4. popen.obj: popen.c
  5.     cc -c -DDEMO popen.c
  6.  
  7. clean:
  8.     rm -f *.obj core *.map
  9.  
  10. clobber: clean
  11.     rm -f *.exe install
  12.     
  13. install:
  14.     cc -c popen.c
  15.     @echo What next?
  16.